home *** CD-ROM | disk | FTP | other *** search
- <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
- <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
-
- <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
- <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
-
- <!DOCTYPE dialog SYSTEM "chrome://editor/locale/editableArea.dtd">
-
- <dialog id="insertEditableAreaDlg" title="&window.title;"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- buttons="accept,cancel"
- onload="Startup();"
- ondialogaccept="return onAccept();"
- ondialogcancel="return onCancel();">
-
- <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
- <script type="application/x-javascript" src="chrome://editor/content/editableArea.js"/>
- <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
-
- <broadcaster id="args" value=""/>
- <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
-
- <vbox>
- <groupbox>
- <caption label="&areaName.label;"/>
- <vbox>
- <label value="&provideId.label;"
- control="editableAreaId"/>
- <textbox id="editableAreaId"
- oninput="ControlAreaId(this)"/>
- <hbox>
- <label value=" "/>
- <label value="&warning.label;"
- id="warning" hidden="true"
- style="color: red"/>
- </hbox>
- </vbox>
- </groupbox>
- <groupbox id="areaType">
- <caption label="&areaType.label;"/>
- <vbox>
- <radiogroup orient="vertical" id="typeRadio">
- <radio value="flow" label="&flowAreaRadio.label;" selected="true"/>
- <radio value="block" label="&blockAreaRadio.label;"/>
- </radiogroup>
- </vbox>
- </groupbox>
- <groupbox id="areaOptions">
- <caption label="&options.label;"/>
- <vbox>
- <checkbox label="&optionalAreaCheckbox.label;" id="optionalCheckbox"/>
- <checkbox label="&repeatableAreaCheckbox.label;" id="repeatableCheckbox"/>
- <checkbox label="&movableAreaCheckbox.label;" id="movableCheckbox"/>
- </vbox>
- </groupbox>
- </vbox>
- </dialog>
-